home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Libris Britannia 4
/
science library(b).zip
/
science library(b)
/
DDJMAG
/
DDJ9207.ZIP
/
FILTER.ZIP
/
VIEWER.RC
< prev
Wrap
Text File
|
1992-01-27
|
1KB
|
36 lines
/****************************************************************************
FILE : Viewer.rc
PURPOSE: resource file for graphic-file viewer.
RESOURCES: ViewerMenu MENU - Menu for main window.
AboutBox DIALOG - "About" dialog box.
⌐ 1992, Evangelo Prodromou. All rights reserved.
****************************************************************************/
/* Include Windows header and header for this application. */
#include "windows.h"
#include "viewer.h"
/* Menu for main window. */
ViewerMenu MENU
BEGIN
MENUITEM "&About Viewer...", IDM_ABOUT
END
/* About dialog box. */
AboutBox DIALOG 22, 17, 144, 75
STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
CAPTION "About Viewer"
BEGIN
CTEXT "Graphic File Viewer" IDC_STATIC, 0, 5, 144, 8
CTEXT "Version 1.0" IDC_STATIC, 0, 14, 144, 8
CTEXT "⌐ 1992, Evangelo Prodromou." IDC_STATIC, 0, 34, 144, 8
DEFPUSHBUTTON "&OK" IDOK, 53, 59, 32, 14
END